From 54066546b44fe8703ba965e22e6544faa2743b96 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Sun, 10 Aug 2014 22:08:57 -0700 Subject: [PATCH] Fix a flaky test (due to hashes changing) --- tests/test_cargo_cross_compile.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_cargo_cross_compile.rs b/tests/test_cargo_cross_compile.rs index 035bc45e6..2067b4b70 100644 --- a/tests/test_cargo_cross_compile.rs +++ b/tests/test_cargo_cross_compile.rs @@ -366,6 +366,9 @@ test!(cross_tests { name = "foo" authors = [] version = "0.0.0" + + [[bin]] + name = "bar" "#) .file("src/main.rs", r#" extern crate foo; @@ -386,7 +389,7 @@ test!(cross_tests { execs().with_status(0) .with_stdout(format!("\ {compiling} foo v0.0.0 ({foo}) -{running} target[..]{triple}[..]test[..]foo-[..] +{running} target[..]{triple}[..]test[..]bar-[..] running 1 test test test ... ok -- 2.30.2